home *** CD-ROM | disk | FTP | other *** search
- /* p898.c --- bible */
- #include <conio.h>
- #include <stdlib.h>
- #define ESC '\033'
- main()
- {
- int xpos, ypos = 5, c = 0;
- cprintf("Press ESC to exit");
- while(c != ESC)
- {
- clrscr();
- gotoxy(1, 1);
- cprintf("Press ESC to exit");
- randomize();
- gotoxy(random(40), ypos);
- xpos = wherex();
- putch('X');
- gotoxy(1, 12);
- cprintf("The 'X' is at position %d", xpos);
- c = getch();
- }
- }